home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / EQ.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  2KB  |  59 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   EQ.h - EQ Effect
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef EQ_H
  24. #define EQ_H
  25.  
  26. #include "../globals.h"
  27. #include "../DSP/AnalogFilter.h"
  28. #include "Effect.h"
  29.  
  30. class EQ:public Effect{
  31.     public:
  32.     EQ(int insertion,REALTYPE *efxoutl_,REALTYPE *efxoutr_);
  33.     ~EQ();
  34.     void out(REALTYPE *smpsl,REALTYPE *smpr);
  35.     void setpreset(unsigned char npreset);
  36.     void changepar(int npar,unsigned char value);
  37.     unsigned char getpar(int npar);
  38.     void cleanup();
  39.     REALTYPE getfreqresponse(REALTYPE freq);
  40.     private:
  41.     //Parametrii
  42.     unsigned char Pvolume;//Volumul 
  43.     
  44.     void setvolume(unsigned char Pvolume);
  45.     
  46.     struct {
  47.         //parameters
  48.         unsigned char Ptype,Pfreq,Pgain,Pq,Pstages;
  49.         //internal values
  50.         AnalogFilter *l,*r;
  51.     }filter[MAX_EQ_BANDS];
  52.         
  53. };
  54.  
  55.  
  56. #endif
  57.  
  58.  
  59.